home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / rtfhelp.zip / RTFHDATA.C < prev    next >
Text File  |  1994-11-06  |  1KB  |  40 lines

  1. /*
  2. ======================================================================
  3.    RTFHelp Windows Help Generation Tool
  4.    (C) Copyright 1994 by J. Hlavaty
  5.  
  6.    RTFHData.c
  7.    Global data for RTFHelp
  8. ======================================================================
  9. */
  10.  
  11. #include <stdio.h>
  12. #include <stdlib.h>
  13. #include <string.h>
  14.  
  15. // make sure our externs in rtfhelp.h aren't included in this file
  16. //   which actually defines the data
  17. #define  NO_EXTERNS
  18. #include "rtfhelp.h"
  19.  
  20.  
  21. char Token[RTFH_TOKENSIZE] ;
  22. char szBuffer[RTFH_BUFFERSIZE] ;
  23. char szBuffer2[RTFH_BUFFER2SIZE] ;
  24. char cBufferPos = 0 ;
  25.  
  26. char *pszInput = NULL, *pszOutput = NULL ;
  27.  
  28.  
  29. BOOL bOverwrite     = FALSE ;  // FALSE means prompt user before overwriting RTF file
  30. BOOL bCondense      = TRUE ;   // FALSE means 'Compatibility Mode'
  31. BOOL bVerbose       = TRUE ;   // FALSE means no informational msgs
  32. BOOL bGeneratingHDC = FALSE ;  // NOT IN THIS VERSION
  33.  
  34. BOOL codepage  = 0 ;    // '0' means it's already ANSI (Windows default) codepage
  35. char hardspace = '%' ;  // this character at the start of a text line will be replaced by a space
  36.  
  37. char SecPassName[13] ;
  38. char FirPassName[13] ;
  39.  
  40.